home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Belgian Amiga Club - ADF Collection
/
BS1 part 60.zip
/
BS1 part 60
/
Kick Pascal v2.10 d1.adf
/
INCLUDE
/
exec
/
resident.h
< prev
next >
Wrap
Text File
|
1990-11-01
|
650b
|
31 lines
{$if not def EXEC_RESIDENT_H}
CONST EXEC_RESIDENT_H=0;
{$if not def EXEC_NODES_H;incl"exec/nodes.h";endif}
TYPE
p_Resident=^Resident;
Resident=Record
rt_MatchWord:Word;
rt_MatchTag:p_Resident;
rt_EndSkip:Ptr;
rt_Flags,rt_Version,rt_Type:Byte;
rt_Pri:Short;
rt_Name,rt_IdString:Str;
rt_Init:Ptr
End;
CONST
RTC_MATCHWORD=$4AFC;
RTF_AUTOINIT=$80;
RTF_COLDSTART=$1;
RTM_WHEN=$3;
RTW_NEVER=0;
RTW_COLDSTART=1;
{$endif}
{$if not def EXEC_RESIDENT_LIB}
Const EXEC_RESIDENT_LIB=0;
Library SysBase:
-72:Procedure InitCode(d0,d1:Long);
-96:Function FindResident(a1:Str):p_Resident;
-102:Function InitResident(a1:p_Resident; d1:Ptr):Ptr;
End;
{$endif}